wok rev 22843

Add whdd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 14 15:54:18 2020 +0100 (2020-02-14)
parents 5700c161e93e
children 44b836c51f50
files dialog-dev/receipt nwipe/receipt whdd/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dialog-dev/receipt	Fri Feb 14 15:54:18 2020 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dialog-dev"
     1.7 +VERSION="1.3_20190211"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Script-interpreter which provides a set of curses widgets, development files."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +LICENSE="LGPL2.1"
    1.12 +
    1.13 +WEB_SITE="https://invisible-island.net/dialog/"
    1.14 +
    1.15 +WANTED="dialog"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/include
    1.21 +	cp -a $install/usr/lib $fs/usr
    1.22 +	cp $src/*.h $fs/usr/include
    1.23 +}
     2.1 --- a/nwipe/receipt	Fri Feb 14 15:43:53 2020 +0100
     2.2 +++ b/nwipe/receipt	Fri Feb 14 15:54:18 2020 +0100
     2.3 @@ -10,7 +10,7 @@
     2.4  WEB_SITE="https://github.com/martijnvanbrummelen/nwipe"
     2.5  WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
     2.6  
     2.7 -DEPENDS="ncurses parted util-linux-uuid"
     2.8 +DEPENDS="ncurses parted util-linux-uuid dmidecode"
     2.9  BUILD_DEPENDS="pkg-config libtool ncurses-dev parted-dev dmidecode"
    2.10  
    2.11  current_version()
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/whdd/receipt	Fri Feb 14 15:54:18 2020 +0100
     3.3 @@ -0,0 +1,28 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="whdd"
     3.7 +VERSION="3.0"
     3.8 +CATEGORY="misc"
     3.9 +SHORT_DESC="HDD diagnostic and data recovery tool"
    3.10 +MAINTAINER="pascal.bellard@slitaz.org"
    3.11 +LICENSE="GPL3"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WEB_SITE="https://whdd.github.io/"
    3.14 +WGET_URL="https://github.com/whdd/whdd/archive/$VERSION.tar.gz"
    3.15 +
    3.16 +DEPENDS="ncursesw"
    3.17 +BUILD_DEPENDS="ncursesw-dev dialog-dev"
    3.18 +
    3.19 +# Rules to configure and make the package.
    3.20 +compile_rules()
    3.21 +{
    3.22 +	export LDFLAGS="$LDFLAGS -lncursesw"
    3.23 +	./build.sh
    3.24 +	make DESTDIR=$DESTDIR install
    3.25 +}
    3.26 +
    3.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.28 +genpkg_rules()
    3.29 +{
    3.30 +	cp -a $install/bin $fs
    3.31 +}