Add pdftk-bin
This commit is contained in:
19
src/libgcj17-bin/.SRCINFO
Normal file
19
src/libgcj17-bin/.SRCINFO
Normal 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
31
src/libgcj17-bin/PKGBUILD
Executable 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:
|
Reference in New Issue
Block a user