Skip to content

Instantly share code, notes, and snippets.

@synthead
Last active August 15, 2022 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save synthead/b0ff980329e10d624245bef62608d2d8 to your computer and use it in GitHub Desktop.
Save synthead/b0ff980329e10d624245bef62608d2d8 to your computer and use it in GitHub Desktop.
f-engrave
# Maintainer: Grey Christoforo <first name at last name dat net>
pkgname=f-engrave
pkgver=1.75
pkgrel=1
pkgdesc="Supports Engraving and V-Carving"
url="http://www.scorchworks.com/Fengrave/fengrave.html"
arch=('x86_64')
license=('GPLv3')
makedepends=('dos2unix')
depends=('python' 'python-pyclipper')
source=(http://www.scorchworks.com/Fengrave/F-Engrave-${pkgver}_src.zip arch.patch)
md5sums=('2f3e6c72cfd97984a9bd330885616321'
'0024e18a0fd00d5fd455b783264e6923')
prepare() {
cd F-Engrave-${pkgver}_src
patch < ../arch.patch
dos2unix ${pkgname}.py
}
build() {
cd F-Engrave-${pkgver}_src/TTF2CXF_STREAM
make
}
package() {
cd F-Engrave-${pkgver}_src
install -Dm755 ${pkgname}.py "$pkgdir/usr/bin/${pkgname}"
cd TTF2CXF_STREAM
install -Dm755 ttf2cxf_stream "$pkgdir/usr/bin/ttf2cxf_stream"
}
# vim:set ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment