Initial commit
This commit is contained in:
commit
087a229d3a
2 changed files with 35 additions and 0 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal file
|
@ -0,0 +1,17 @@
|
|||
pkgbase = makefontpkg
|
||||
pkgdesc = Tool for creating packages from TrueType and OpenType fonts
|
||||
pkgver = 20150624
|
||||
pkgrel = 1
|
||||
url = http://github.com/misterdanb/makefontpkg
|
||||
arch = x86_64
|
||||
arch = i686
|
||||
license = GPLv3
|
||||
makedepends = git
|
||||
depends = python3
|
||||
options = !strip
|
||||
options = !emptydirs
|
||||
source = makefontpkg::git://github.com/misterdanb/makefontpkg.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = makefontpkg
|
||||
|
18
PKGBUILD
Normal file
18
PKGBUILD
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Maintainer: danb <danielbusch1992@googlemail.com>
|
||||
|
||||
pkgname=makefontpkg
|
||||
pkgver=20150624
|
||||
pkgrel=1
|
||||
pkgdesc="Tool for creating packages from TrueType and OpenType fonts"
|
||||
arch=('x86_64' 'i686')
|
||||
url='http://github.com/misterdanb/makefontpkg'
|
||||
license=('GPLv3')
|
||||
depends=('python3')
|
||||
makedepends=('git')
|
||||
options=('!strip' '!emptydirs')
|
||||
source=('makefontpkg::git://github.com/misterdanb/makefontpkg.git')
|
||||
md5sums=('SKIP')
|
||||
|
||||
package() {
|
||||
install -Dm755 "$srcdir/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
|
||||
}
|
Loading…
Reference in a new issue