wok view libpaper/receipt @ rev 23545

updated python-pyserial (2.7 -> 3.4)
author Hans-G?nter Theisgen
date Mon Apr 06 17:31:37 2020 +0100 (2020-04-06)
parents 291c914047e1
children b78e79c31b1f
line source
1 # SliTaz package receipt.
3 PACKAGE="libpaper"
4 VERSION="1.1.28"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library for handling paper characteristics."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://packages.debian.org/unstable/source/libpaper"
11 TARBALL="${PACKAGE}_$VERSION.tar.gz"
12 WGET_URL="http://ftp.de.debian.org/debian/pool/main/libp/libpaper/$TARBALL"
14 BUILD_DEPENDS="autoconf automake libtool"
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 autoreconf -vfi &&
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/sbin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }