wok view libburn/receipt @ rev 24137

updated qpdf and qpdf-dev (8.4.2 -> 10.3.2)
author Hans-G?nter Theisgen
date Mon Nov 08 17:10:43 2021 +0100 (2021-11-08)
parents 3b191e9b8b46
children ede1d184d5c5
line source
1 # SliTaz package receipt.
3 PACKAGE="libburn"
4 VERSION="1.5.2"
5 CATEGORY="utilities"
6 SHORT_DESC="Library for reading, mastering and writing optical disks."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://dev.lovelyhq.com/libburnia/libburn"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS &&
18 make &&
19 make -j1 DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }