wok annotate ncdc/receipt @ rev 18271
Up: nginx (1.9.3)
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Fri Aug 07 11:35:59 2015 +0300 (2015-08-07) |
parents | |
children | 46fc8daa3b41 |
rev | line source |
---|---|
paul@17346 | 1 # SliTaz package receipt. |
paul@17346 | 2 |
paul@17346 | 3 PACKAGE="ncdc" |
paul@17346 | 4 VERSION="1.19.1" |
paul@17346 | 5 CATEGORY="network" |
paul@17346 | 6 SHORT_DESC="NCurses Direct Connect." |
paul@17346 | 7 MAINTAINER="paul@slitaz.org" |
paul@17346 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@17346 | 9 WEB_SITE="http://dev.yorhel.nl/ncdc" |
paul@17346 | 10 WGET_URL="http://dev.yorhel.nl/download/$TARBALL" |
paul@17346 | 11 |
paul@17346 | 12 DEPENDS="ncurses zlib bzip2 sqlite gnutls pcre" |
paul@17346 | 13 BUILD_DEPENDS="ncurses-dev zlib-dev bzip2-dev sqlite-dev gnutls-dev |
paul@17346 | 14 glib-dev pcre-dev" |
paul@17346 | 15 # Rules to configure and make the package. |
paul@17346 | 16 compile_rules() |
paul@17346 | 17 { |
paul@17346 | 18 ./configure --prefix=/usr |
paul@17346 | 19 make |
paul@17346 | 20 make install |
paul@17346 | 21 } |
paul@17346 | 22 |
paul@17346 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@17346 | 24 genpkg_rules() |
paul@17346 | 25 { |
paul@17346 | 26 mkdir -p $fs/usr |
paul@17346 | 27 cp -a $install/usr/bin $fs/usr |
paul@17346 | 28 } |
paul@17346 | 29 |