wok annotate vala/receipt @ rev 21909

updated sic (1.1 -> 1.2)
author Hans-G?nter Theisgen
date Fri Oct 04 15:39:32 2019 +0100 (2019-10-04)
parents c46591bcff38
children 6831608a1b2a
rev   line source
mimas@2290 1 # SliTaz package receipt.
mimas@2290 2
mimas@2290 3 PACKAGE="vala"
pascal@19991 4 VERSION="0.36.4"
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 {
pankso@12808 21 ./configure $CONFIGURE_ARGS &&
slaxemulator@10306 22 make && make install
mimas@2290 23 }
mimas@2290 24
mimas@2290 25 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2290 26 genpkg_rules()
mimas@2290 27 {
pankso@5255 28 mkdir -p $fs/usr/lib $fs/usr/share
pankso@12808 29 cp -a $install/usr/bin $fs/usr
pankso@12808 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@12808 31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
pankso@12808 32 cp -a $install/usr/include $fs/usr
pankso@12808 33 cp -a $install/usr/share/vala* $fs/usr/share
pankso@12808 34 cp -a $install/usr/share/aclocal $fs/usr/share
mimas@2290 35 }