wok-next annotate vala/receipt @ rev 18472

ghostscript, libv4l, slitaz-base-files: fix installation (thanks llev)
ghostscript: fix package upgrades;
libv4l: check multiple preloads in case of upgrade, not add preload if installation not finished/fails;
slitaz-base-files: not to overwrite real sudo.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Oct 05 01:10:26 2015 +0300 (2015-10-05)
parents 76b72f1ad63c
children 1bb2f73e5e1b
rev   line source
mimas@2290 1 # SliTaz package receipt.
mimas@2290 2
mimas@2290 3 PACKAGE="vala"
pankso@16315 4 VERSION="0.24.0"
mimas@2290 5 CATEGORY="development"
mimas@2290 6 SHORT_DESC="Compiler for the GObject type system"
mimas@2290 7 MAINTAINER="mimas@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
pankso@12189 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@16315 10 WEB_SITE="https://wiki.gnome.org/Projects/Vala"
slaxemulator@9589 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
jozee@4975 12 TAGS="compiler"
pankso@16315 13 HOST_ARCH="i486 arm"
mimas@2290 14
slaxemulator@10306 15 DEPENDS="glib"
slaxemulator@10306 16 BUILD_DEPENDS="flex bison glib-dev pkg-config"
slaxemulator@10306 17
mimas@2290 18 # Rules to configure and make the package.
mimas@2290 19 compile_rules()
mimas@2290 20 {
mimas@2290 21 cd $src
pankso@12808 22 ./configure $CONFIGURE_ARGS &&
slaxemulator@10306 23 make && make install
mimas@2290 24 }
mimas@2290 25
mimas@2290 26 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2290 27 genpkg_rules()
mimas@2290 28 {
pankso@5255 29 mkdir -p $fs/usr/lib $fs/usr/share
pankso@12808 30 cp -a $install/usr/bin $fs/usr
pankso@12808 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@12808 32 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
pankso@12808 33 cp -a $install/usr/include $fs/usr
pankso@12808 34 cp -a $install/usr/share/vala* $fs/usr/share
pankso@12808 35 cp -a $install/usr/share/aclocal $fs/usr/share
mimas@2290 36 }