wok-next annotate gdbm/receipt @ rev 7577
Add ogmrip. Liraries and GTK2 interface for DVD ripping using mencoder.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Dec 09 14:25:07 2010 +0000 (2010-12-09) |
parents | e58706fa0b9d |
children | 3b10cfcc3474 |
rev | line source |
---|---|
pascal@1436 | 1 # SliTaz package receipt. |
pascal@1436 | 2 |
pascal@1436 | 3 PACKAGE="gdbm" |
pascal@1436 | 4 VERSION="1.8.3" |
pascal@1436 | 5 CATEGORY="misc" |
pascal@1436 | 6 SHORT_DESC="GNU database indexing library." |
pascal@1436 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1436 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1436 | 9 WEB_SITE="http://www.gnu.org/software/gdbm" |
pascal@1436 | 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
pascal@1436 | 11 |
pascal@1436 | 12 # Rules to configure and make the package. |
pascal@1436 | 13 compile_rules() |
pascal@1436 | 14 { |
pascal@1436 | 15 cd $src |
pascal@1436 | 16 sed -i -e 's/BINOWN = bin/BINOWN = root/' \ |
pascal@1436 | 17 -e 's/BINGRP = bin/BINGRP = root/' Makefile.in |
pascal@1436 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1436 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1436 | 20 make && |
pascal@1436 | 21 make INSTALL_ROOT=$PWD/_pkg install |
pascal@1436 | 22 } |
pascal@1436 | 23 |
pascal@1436 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1436 | 25 genpkg_rules() |
pascal@1436 | 26 { |
pascal@1436 | 27 mkdir -p $fs/usr/lib |
pascal@1436 | 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pascal@1436 | 29 } |
pascal@1436 | 30 |