diff options
author | bill-auger <mr.j.spam.me@gmail.com> | 2020-07-12 05:46:17 -0400 |
---|---|---|
committer | bill-auger <mr.j.spam.me@gmail.com> | 2020-07-12 07:15:27 -0400 |
commit | 6adb687f5b1fa29e36ba39624a4f5ed294b10a6e (patch) | |
tree | faed837f0e0a5239fd220a5fb07ccac6fc39dc8b /pcr/culmus/PKGBUILD | |
parent | e5040a86fb06532d41a83a614a0e6e3a34a9d6a9 (diff) | |
download | abslibre-6adb687f5b1fa29e36ba39624a4f5ed294b10a6e.tar.gz abslibre-6adb687f5b1fa29e36ba39624a4f5ed294b10a6e.tar.bz2 abslibre-6adb687f5b1fa29e36ba39624a4f5ed294b10a6e.zip |
[culmus]: remove package
could not make it work
Diffstat (limited to 'pcr/culmus/PKGBUILD')
-rw-r--r-- | pcr/culmus/PKGBUILD | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/pcr/culmus/PKGBUILD b/pcr/culmus/PKGBUILD deleted file mode 100644 index a1b9745ff..000000000 --- a/pcr/culmus/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer (AUR): Ivan Puntiy <ivan.puntiy at gmail> -# Contributor (AUR): <francois.archlinux.org> -# Contributor: Alon Ivtsan <alonivtsan@lavabit.com> - -# parabola changes and rationale: -# - added .install file to update fonts cache - -pkgname=culmus -pkgver=0.132 -pkgrel=1 -pkgdesc="A collection of Type1 and TrueType Hebrew fonts" -arch=('any') -url="http://culmus.sourceforge.net" -license=('GPL2') -depends=('fontconfig' 'xorg-fonts-alias' 'xorg-font-utils' 'xorg-fonts-encodings') -install=${pkgname}.install -source=( - "http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" - "$pkgname-0.121-fontconfig_fix.patch" -) -sha256sums=('b13e7463ede5e56da79892e6a22eaca8ae3e0fc34a30fcf7417412a45dee072c' - '6ba13854700bd9cdf6b8facd920082aed367bedabe10e93bd39cfe6bf8eb76fd') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # fix due to fontconfig 2.10.1 update - patch mailed to upstream - patch culmus.conf "$srcdir/$pkgname-0.121-fontconfig_fix.patch" -} - -package() { - # install Type1 fonts - install -m755 -d "${pkgdir}/usr/share/fonts/Type1" - install -m644 "${srcdir}/culmus-$pkgver/"*.{afm,pfa} \ - "${pkgdir}/usr/share/fonts/Type1" - - # install ttf fonts - install -m755 -d "${pkgdir}/usr/share/fonts/TTF" - install -m644 "${srcdir}/culmus-${pkgver}/"*.ttf \ - "${pkgdir}/usr/share/fonts/TTF" - - # install provided config file with priority 61 - install -m755 -d "${pkgdir}/etc/fonts/conf.avail/" - install -m644 "${srcdir}/culmus-${pkgver}/culmus.conf" \ - "${pkgdir}/etc/fonts/conf.avail/61-culmus.conf" - - # symlink for the abovementioned config file - install -m755 -d "${pkgdir}/etc/fonts/conf.d" - ln -fs "../conf.avail/61-culmus.conf" "${pkgdir}/etc/fonts/conf.d/" -} |