wok-6.x annotate sqlite3-ruby/receipt @ rev 20498
updated wget (1.18 -> 1.19.5)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Oct 29 16:54:35 2018 +0100 (2018-10-29) |
parents | 2a5cc8208d36 |
children | 20661c276bcf |
rev | line source |
---|---|
erjo@8060 | 1 # SliTaz package receipt. |
erjo@8060 | 2 |
erjo@8060 | 3 PACKAGE="sqlite3-ruby" |
erjo@8060 | 4 VERSION="1.3.1" |
erjo@8060 | 5 CATEGORY="development" |
erjo@8060 | 6 SHORT_DESC="Ruby interface for the SQLite database engine" |
erjo@8060 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15379 | 8 LICENSE="BSD" |
pascal@15379 | 9 TARBALL="$PACKAGE-$VERSION.tgz" |
al@20444 | 10 WEB_SITE="http://rubyforge.org/projects/sqlite-ruby" |
pascal@15379 | 11 WGET_URL="http://rubyforge.org/frs/download.php/71617/$TARBALL" |
pascal@15379 | 12 |
erjo@8060 | 13 DEPENDS="ruby sqlite" |
erjo@8060 | 14 BUILD_DEPENDS="ruby ruby-dev sqlite-dev" |
erjo@8060 | 15 |
erjo@8060 | 16 # Rules to configure and make the package. |
erjo@8060 | 17 compile_rules() |
erjo@8060 | 18 { |
erjo@8060 | 19 cd $src |
erjo@8060 | 20 ruby setup.rb config |
erjo@8060 | 21 ruby setup.rb setup |
pascal@15379 | 22 ruby setup.rb install --prefix=$DESTDIR |
erjo@8060 | 23 } |
erjo@8060 | 24 |
erjo@8060 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@8060 | 26 genpkg_rules() |
erjo@8060 | 27 { |
erjo@8060 | 28 mkdir -p $fs/usr |
pascal@15379 | 29 cp -a $install/usr/lib $fs/usr |
erjo@8060 | 30 } |
erjo@8060 | 31 |