wok view udftools/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents 6bab837a85ec
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="udftools"
4 VERSION="2.2"
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 automake bash file libtool ncurses-dev
16 readline-dev udev-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # 1.0.0b3
22 # sed -i 's/(char\*)spm += /spm = (char*)spm + /' wrudf/wrudf.c
23 # sed -i 's/<stdio.h>/&\n#include <limits.h>/' \
24 # cdrwtool/cdrwtool.c pktsetup/pktsetup.c
26 ./autogen.sh &&
27 ./configure --prefix=/usr &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/sbin $fs/usr
39 }