wok view libisofs/receipt @ rev 20621

pypi.python.org access with untrusted https (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 31 13:09:27 2018 +0100 (2018-12-31)
parents fa6c0adfc0d3
children ed82d8434b53
line source
1 # SliTaz package receipt.
3 PACKAGE="libisofs"
4 VERSION="1.0.8"
5 CATEGORY="utilities"
6 SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://libburnia-project.org/"
11 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure $CONFIGURE_ARGS &&
18 make -j1 && make -j1 install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $install/usr/lib/*.so* $fs/usr/lib
26 }