wok view patch/receipt @ rev 19717

mtpaint: add -lpng12
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 16 08:23:51 2017 +0100 (2017-02-16)
parents 3c98163930bb
children 9cc63da7035a
line source
1 # SliTaz package receipt.
3 PACKAGE="patch"
4 VERSION="2.7.4"
5 CATEGORY="utilities"
6 SHORT_DESC="Utilitie to patch file with diff file."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.gnu.org/software/patch/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS &&
18 make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $install/usr/bin/patch $fs/usr/bin
26 }
28 # Prevent erasing busybox...
29 pre_install()
30 {
31 rm -f "$1/usr/bin/patch"
32 }
34 post_remove()
35 {
36 ln -s /bin/busybox "$1/usr/bin/patch"
37 }