wok-next annotate aiksaurus/receipt @ rev 20236

linux-cloop: tiny patch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 06 10:18:18 2017 +0100 (2017-11-06)
parents 4affba707664
children d43bf7aae921
rev   line source
slaxemulator@19739 1 # SliTaz package receipt v2.
gokhlayeh@7032 2
gokhlayeh@7032 3 PACKAGE="aiksaurus"
gokhlayeh@7032 4 VERSION="1.2.1"
gokhlayeh@7032 5 CATEGORY="system-tools"
gokhlayeh@7032 6 SHORT_DESC="A cross-platform, open-source thesaurus."
gokhlayeh@7032 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
gokhlayeh@7032 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@7032 10 WEB_SITE="http://aiksaurus.sourceforge.net/"
gokhlayeh@7032 11 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL"
gokhlayeh@7032 12
slaxemulator@10279 13 BUILD_DEPENDS="gtk+-dev patch expat-dev xorg-libXau-dev glib-dev"
slaxemulator@19739 14 SPLIT="aiksaurus-dev"
slaxemulator@10279 15
gokhlayeh@7032 16 # Rules to configure and make the package.
gokhlayeh@7032 17 compile_rules()
gokhlayeh@7032 18 {
slaxemulator@10279 19 ./configure --with-gtk $CONFIGURE_ARGS &&
slaxemulator@8366 20 make && make -j1 DESTDIR=$DESTDIR install
gokhlayeh@7032 21 }
gokhlayeh@7032 22
gokhlayeh@7032 23 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@7032 24 genpkg_rules()
gokhlayeh@7032 25 {
slaxemulator@19739 26 case $PACKAGE in
slaxemulator@19739 27 aiksaurus)
slaxemulator@19739 28 copy @std
slaxemulator@19739 29 DEPENDS="gtk+ expat xorg-libXau glib"
slaxemulator@19739 30 ;;
slaxemulator@19739 31 aiksaurus-dev)
slaxemulator@19739 32 copy @dev
slaxemulator@19739 33 DEPENDS="aiksaurus pkg-config"
slaxemulator@19739 34 ;;
slaxemulator@19739 35 esac
gokhlayeh@7032 36 }
gokhlayeh@7032 37