wok annotate 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
rev   line source
devl547@5625 1 # SliTaz package receipt.
devl547@5625 2
devl547@5625 3 PACKAGE="libisofs"
slaxemulator@10129 4 VERSION="1.0.8"
devl547@5625 5 CATEGORY="utilities"
devl547@5625 6 SHORT_DESC="libburnia is a project for reading, mastering and writing optical discs."
devl547@5625 7 MAINTAINER="devl547@gmail.com"
pascal@15473 8 LICENSE="GPL2"
devl547@5625 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@5625 10 WEB_SITE="http://libburnia-project.org/"
devl547@5625 11 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL"
devl547@5625 12
devl547@5625 13 # Rules to configure and make the package.
devl547@5625 14 compile_rules()
devl547@5625 15 {
devl547@5625 16 cd $src
slaxemulator@10129 17 ./configure $CONFIGURE_ARGS &&
slaxemulator@10129 18 make -j1 && make -j1 install
devl547@5625 19 }
devl547@5625 20
devl547@5625 21 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5625 22 genpkg_rules()
devl547@5625 23 {
devl547@5625 24 mkdir -p $fs/usr/lib
pascal@15473 25 cp -a $install/usr/lib/*.so* $fs/usr/lib
devl547@5625 26 }