wok-stable annotate barcode/receipt @ rev 6751
Removed --enable-gold cause gcc and gcc+gcj don't compile right. This is a test to see if it compiles fine on build server without --enable-gold.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Oct 17 17:13:35 2010 +0000 (2010-10-17) |
parents | |
children | 02bbaa9d12ba |
rev | line source |
---|---|
devl547@5631 | 1 # SliTaz package receipt. |
devl547@5631 | 2 |
devl547@5631 | 3 PACKAGE="barcode" |
devl547@5631 | 4 VERSION="0.98" |
devl547@5631 | 5 CATEGORY="utilities" |
devl547@5631 | 6 SHORT_DESC="barcode generator" |
devl547@5631 | 7 MAINTAINER="devl547@gmail.com" |
devl547@5631 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
devl547@5631 | 9 WEB_SITE="http://www.gnu.org/software/barcode/" |
devl547@5631 | 10 WGET_URL="ftp://ftp.gnu.org/gnu/$PACKAGE/$TARBALL" |
devl547@5631 | 11 |
devl547@5631 | 12 # Rules to configure and make the package. |
devl547@5631 | 13 compile_rules() |
devl547@5631 | 14 { |
devl547@5631 | 15 cd $src |
devl547@5631 | 16 ./configure |
devl547@5631 | 17 make |
devl547@5631 | 18 make prefix=$PWD/_pkg install |
devl547@5631 | 19 } |
devl547@5631 | 20 |
devl547@5631 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5631 | 22 genpkg_rules() |
devl547@5631 | 23 { |
devl547@5631 | 24 mkdir -p $fs/usr |
devl547@5631 | 25 strip $_pkg/bin/* |
devl547@5631 | 26 strip $_pkg/lib/* |
devl547@5631 | 27 cp -a $_pkg/bin $fs/usr |
devl547@5631 | 28 cp -a $_pkg/lib $fs/usr |
devl547@5631 | 29 } |