wok view udftools/receipt @ rev 22781

updated freetype and freetype-dev (2.6.4 -> 2.10.1)
author Hans-G?nter Theisgen
date Sun Jan 26 09:26:49 2020 +0100 (2020-01-26)
parents 1be66a08b81f
children 6bab837a85ec
line source
1 # SliTaz package receipt.
3 PACKAGE="udftools"
4 VERSION="2.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Linux UDF filesystem userspcae utilities."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/pali/udftools/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz"
14 DEPENDS="ncurses readline"
15 BUILD_DEPENDS="autoconf bash file ncurses-dev readline-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # 1.0.0b3
21 # sed -i 's/(char\*)spm += /spm = (char*)spm + /' wrudf/wrudf.c
22 # sed -i 's/<stdio.h>/&\n#include <limits.h>/' \
23 # cdrwtool/cdrwtool.c pktsetup/pktsetup.c
25 ./autogen.sh &&
26 ./configure --prefix=/usr &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/sbin $fs/usr
38 }