rev |
line source |
pascal@15721
|
1 # SliTaz package receipt.
|
pascal@15721
|
2
|
pascal@15721
|
3 PACKAGE="l3afpad"
|
pascal@15721
|
4 VERSION="0.8.18.1.10"
|
pascal@15721
|
5 CATEGORY="utilities"
|
pascal@15721
|
6 SHORT_DESC="Simple text editor forked from Leafpad, supports GTK+ 3.x"
|
pascal@15721
|
7 MAINTAINER="al.bobylev@gmail.com"
|
pascal@15721
|
8 LICENSE="LGPL2.1"
|
pascal@15721
|
9 WEB_SITE="http://www.calno.com/l3afpad/"
|
pascal@15721
|
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
|
pascal@15721
|
11 WGET_URL="http://www.calno.com/$PACKAGE/$TARBALL"
|
pascal@15721
|
12
|
pascal@15721
|
13 DEPENDS="gtk+3"
|
pascal@15721
|
14 BUILD_DEPENDS="gtk+3-dev"
|
pascal@15721
|
15
|
pascal@15721
|
16 # Rules to configure and make the package.
|
pascal@15721
|
17 compile_rules()
|
pascal@15721
|
18 {
|
pascal@15721
|
19 chmod +x $src/install-sh
|
pascal@15721
|
20 ./configure \
|
pascal@15721
|
21 --enable-gtkgrid \
|
pascal@15721
|
22 --enable-search-history \
|
pascal@15721
|
23 $CONFIGURE_ARGS &&
|
pascal@15721
|
24 make &&
|
pascal@15721
|
25 make install
|
pascal@15721
|
26 }
|
pascal@15721
|
27
|
pascal@15721
|
28 # Rules to gen a SliTaz package suitable for Tazpkg.
|
pascal@15721
|
29 genpkg_rules()
|
pascal@15721
|
30 {
|
pascal@15721
|
31 mkdir -p $fs/usr/share/pixmaps
|
pascal@15721
|
32 cp -a $install/usr/bin $fs/usr
|
pascal@15721
|
33 cp -a $install/usr/share/pixmaps/*.png $fs/usr/share/pixmaps
|
pascal@15721
|
34 }
|