wok annotate ncdc/receipt @ rev 19641
Up: opus (1.1.3)
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Fri Jan 20 16:48:53 2017 +0000 (2017-01-20) |
parents | bdfc0adbc3b2 |
children | 5fbfbf6ec818 |
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" |
pascal@18334 | 8 LICENSE="MIT" |
paul@17346 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@17346 | 10 WEB_SITE="http://dev.yorhel.nl/ncdc" |
paul@17346 | 11 WGET_URL="http://dev.yorhel.nl/download/$TARBALL" |
paul@17346 | 12 |
paul@17346 | 13 DEPENDS="ncurses zlib bzip2 sqlite gnutls pcre" |
paul@17346 | 14 BUILD_DEPENDS="ncurses-dev zlib-dev bzip2-dev sqlite-dev gnutls-dev |
paul@17346 | 15 glib-dev pcre-dev" |
paul@17346 | 16 # Rules to configure and make the package. |
paul@17346 | 17 compile_rules() |
paul@17346 | 18 { |
paul@17346 | 19 ./configure --prefix=/usr |
paul@17346 | 20 make |
paul@17346 | 21 make install |
paul@17346 | 22 } |
paul@17346 | 23 |
paul@17346 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@17346 | 25 genpkg_rules() |
paul@17346 | 26 { |
paul@17346 | 27 mkdir -p $fs/usr |
paul@17346 | 28 cp -a $install/usr/bin $fs/usr |
paul@17346 | 29 } |
paul@17346 | 30 |