summaryrefslogtreecommitdiff
path: root/libre/unzip-libre/PKGBUILD
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-04 08:32:59 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-04 08:32:59 -0300
commit9c9c696c1e270fdc9b29e974e5d9fb5ba1e15981 (patch)
treed91f6663069478be23c03d6220015c0ba02b9005 /libre/unzip-libre/PKGBUILD
parent5f717336745883bc05059daad60e95ff74be71c5 (diff)
unzip: remove libre suffix and add complex pkgrel
Diffstat (limited to 'libre/unzip-libre/PKGBUILD')
-rw-r--r--libre/unzip-libre/PKGBUILD51
1 files changed, 0 insertions, 51 deletions
diff --git a/libre/unzip-libre/PKGBUILD b/libre/unzip-libre/PKGBUILD
deleted file mode 100644
index b3ef3d44d..000000000
--- a/libre/unzip-libre/PKGBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# $Id: PKGBUILD 215748 2014-06-30 11:29:59Z bisson $
-# Maintainer (Arch):
-# Contributor (Arch): Douglas Soares de Andrade <douglas@archlinux.org>
-# Contributor (Arch): Robson Peixoto
-
-_pkgname=unzip
-pkgname=unzip-libre
-pkgver=6.0
-_pkgver=${pkgver/./}
-pkgrel=7
-pkgdesc='For extracting and viewing files in .zip archives'
-url='http://www.info-zip.org/UnZip.html'
-arch=('i686' 'x86_64' 'mips64el')
-license=('custom')
-depends=('bzip2' 'bash')
-provides=("${_pkgname}=${pkgver}")
-conflicts=("${_pkgname}")
-replaces=("${_pkgname}")
-mksource=("http://downloads.sourceforge.net/infozip/${_pkgname}${_pkgver}.tar.gz"
- 'match.patch')
-source=("https://repo.parabolagnulinux.org/other/${pkgname}/${_pkgname}${_pkgver}-libre.tar.gz")
-mkmd5sums=('62b490407489521db863b523a7f86375'
- 'e6d9f0c204c2abe6a57dc5e1637d5140')
-md5sums=('bbe4b7f4d48b2f939b5e43fde0ac7762')
-
-mksource() {
- cd "${srcdir}/${_pkgname}${_pkgver}"
-
- # from http://bzr.trisquel.info/package-helpers/trunk/annotate/head%3A/helpers/natty/DATA/unzip/match.patch
- patch -Np0 -i ${srcdir}/match.patch
-}
-
-build() {
- cd "${srcdir}/${_pkgname}${_pkgver}"
-
- # DEFINES, make, and install args from Debian
- DEFINES='-DACORN_FTYPE_NFS -DWILD_STOP_AT_DIR -DLARGE_FILE_SUPPORT \
- -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE -DNO_LCHMOD \
- -DDATE_FORMAT=DF_YMD -DUSE_BZIP2 -DNOMEMCPY -DNO_WORKING_ISPRINT'
-
- make -f unix/Makefile prefix=/usr \
- D_USE_BZ2=-DUSE_BZIP2 L_BZ2=-lbz2 \
- LF2="$LDFLAGS" CF="$CFLAGS $CPPFLAGS -I. $DEFINES" \
- unzips
-}
-
-package(){
- cd "${srcdir}/${_pkgname}${_pkgver}"
- make -f unix/Makefile prefix="${pkgdir}"/usr install
- install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
-}