Add pdftk-bin

This commit is contained in:
Travis Burtrum 2017-02-15 23:25:41 -05:00
parent f2cefe0067
commit 5c4d211943
4 changed files with 101 additions and 0 deletions

19
src/libgcj17-bin/.SRCINFO Normal file
View File

@ -0,0 +1,19 @@
# Generated by mksrcinfo v8
# Thu Feb 9 23:28:03 UTC 2017
pkgbase = libgcj17-bin
pkgdesc = Dynamically load and interpret java class files. Built from binary executables available in Debian repositories.
pkgver = 6.3.0_6
pkgrel = 1
url = http://gcc.gnu.org/java/
arch = i686
arch = x86_64
license = GPL
depends = zlib
conflicts = gcc-gcj
source_i686 = http://httpredir.debian.org/debian/pool/main/g/gcc-6/libgcj17_6.3.0-6_i386.deb
sha1sums_i686 = b5eca3a78e97da121f7ebbccafd7a97510dea558
source_x86_64 = http://httpredir.debian.org/debian/pool/main/g/gcc-6/libgcj17_6.3.0-6_amd64.deb
sha1sums_x86_64 = 5679d0ac94b48623a23e717b23d33321edeedb44
pkgname = libgcj17-bin

31
src/libgcj17-bin/PKGBUILD Executable file
View File

@ -0,0 +1,31 @@
#!/bin/bash
# Maintainer: Florian Bruhin (The Compiler) <archlinux.org@the-compiler.org>
# Contributor: Yannik Stein <yannik.stein [at] gmail.com>
# Contributor: Roberto Calabrese <robertocalabrese75 [at] gmail.com>
pkgname=libgcj17-bin
pkgver=6.3.0_6
pkgrel=1
pkgdesc="Dynamically load and interpret java class files. Built from binary \
executables available in Debian repositories."
url=http://gcc.gnu.org/java/
arch=(i686 x86_64)
license=(GPL)
conflicts=(gcc-gcj)
depends=(zlib)
source_i686=(http://httpredir.debian.org/debian/pool/main/g/gcc-6/${pkgname%-*}_${pkgver%_*}-${pkgver##*_}_i386.deb)
source_x86_64=(http://httpredir.debian.org/debian/pool/main/g/gcc-6/${pkgname%-*}_${pkgver%_*}-${pkgver##*_}_amd64.deb)
sha1sums_i686=('b5eca3a78e97da121f7ebbccafd7a97510dea558')
sha1sums_x86_64=('5679d0ac94b48623a23e717b23d33321edeedb44')
prepare() {
tar xf data.tar.*
}
package() {
find -type f -name 'libgcj.so*' \
-execdir install -Dm755 {} "$pkgdir/usr/lib/{}" \;
}
# vim:set ts=2 sw=2 et:

22
src/pdftk-bin/.SRCINFO Normal file
View File

@ -0,0 +1,22 @@
# Generated by mksrcinfo v8
# Tue Aug 9 07:31:58 UTC 2016
pkgbase = pdftk-bin
pkgdesc = Swiss army knife for PDFs. Built from binary executables available in Debian repositories.
pkgver = 2.02_4_b1
pkgrel = 2
url = http://www.pdfhacks.com/pdftk
arch = i686
arch = x86_64
license = GPL
depends = libgcj17-bin
depends = gcc-libs
provides = pdftk
conflicts = pdftk
conflicts = pdfchain-all-inclusive
source_i686 = http://httpredir.debian.org/debian/pool/main/p/pdftk/pdftk_2.02-4+b1_i386.deb
sha1sums_i686 = 7cc5b82bef21627019eb1e908f006c3529961a2e
source_x86_64 = http://httpredir.debian.org/debian/pool/main/p/pdftk/pdftk_2.02-4+b1_amd64.deb
sha1sums_x86_64 = 516b2d789a94fa998e18407808ffa67f28bbff18
pkgname = pdftk-bin

29
src/pdftk-bin/PKGBUILD Executable file
View File

@ -0,0 +1,29 @@
# Maintainer: Florian Bruhin (The Compiler) <archlinux.org@the-compiler.org>
# Contributor: Yannik Stein <yannik.stein [at] gmail.com>
# Contributor: Dan Serban
# Contributor: flying-sheep
# Contributor: Liu Chang <goduck777@gmail.com>
pkgname=pdftk-bin
pkgver=2.02_4_b1
_deb_pkgver=2.02-4+b1
pkgrel=2
pkgdesc="Swiss army knife for PDFs. Built from binary executables available in Debian repositories."
url=http://www.pdfhacks.com/pdftk
arch=(i686 x86_64)
license=(GPL)
depends=(libgcj17-bin gcc-libs)
provides=(pdftk)
conflicts=(pdftk pdfchain-all-inclusive)
source_i686=(http://httpredir.debian.org/debian/pool/main/p/pdftk/pdftk_${_deb_pkgver}_i386.deb)
source_x86_64=(http://httpredir.debian.org/debian/pool/main/p/pdftk/pdftk_${_deb_pkgver}_amd64.deb)
sha1sums_i686=('7cc5b82bef21627019eb1e908f006c3529961a2e')
sha1sums_x86_64=('516b2d789a94fa998e18407808ffa67f28bbff18')
package() {
tar -xf data.tar.?z -C "$pkgdir" ./usr
}
# vim:set ts=2 sw=2 ft=sh et: