Date: Wednesday, April 19, 2023 @ 08:55:59
Author: dvzrv
Revision: 1447414
archrelease: copy trunk to community-x86_64
Added:
t1utils/repos/community-x86_64/PKGBUILD
(from rev 1447413, t1utils/trunk/PKGBUILD)
Deleted:
t1utils/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 72 +++++++++++++++++++++++++++++--------------------------------
1 file changed, 35 insertions(+), 37 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-04-19 08:55:34 UTC (rev 1447413)
+++ PKGBUILD 2023-04-19 08:55:59 UTC (rev 1447414)
@@ -1,37 +0,0 @@
-# Maintainer: David Runge <[email protected]>
-# Contributor: Evgeniy Alekseev <arcanis at archlinux dot org>
-# Contributor: Sergej Pupykin <[email protected]>
-# Contributor: Simo Leone <[email protected]>
-
-pkgname=t1utils
-pkgver=1.42
-pkgrel=1
-pkgdesc="Utilities for manupulating Adobe Type 1 font software "
-arch=('x86_64')
-url="https://github.com/kohler/t1utils"
-license=('custom')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kohler/${pkgname}/archive/v${pkgver}.tar.gz")
-sha512sums=('29e983a488a0c51e31fe45572d66cfa8a987d85b32f303873c35d0551db29c09d424eb10e76374f908ef62bc7c60236231bbddf40eb60f1be9652322da4b1f5e')
-b2sums=('5aabd8a559c79b8c4ee0711ce679dc8a6a091a7606261da7533b16b65295c0c12c0c77ac8f921a36a608e91584f90722c439127feeecde2480e6304428e7e6c0')
-
-prepare() {
- cd "${pkgname}-${pkgver}"
- autoreconf -vfi
-}
-
-build() {
- cd "${pkgname}-${pkgver}"
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
-
- install -vDm 644 {NEWS,README}.md \
- -t "${pkgdir}/usr/share/doc/${pkgname}/"
- install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
-
Copied: t1utils/repos/community-x86_64/PKGBUILD (from rev 1447413,
t1utils/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-04-19 08:55:59 UTC (rev 1447414)
@@ -0,0 +1,35 @@
+# Maintainer: David Runge <[email protected]>
+# Contributor: Evgeniy Alekseev <arcanis at archlinux dot org>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: Simo Leone <[email protected]>
+
+pkgname=t1utils
+pkgver=1.42
+pkgrel=2
+pkgdesc="Utilities for manupulating Adobe Type 1 font software "
+arch=(x86_64)
+url="https://github.com/kohler/t1utils"
+license=(custom)
+depends=(glibc)
+source=($url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz)
+sha512sums=('29e983a488a0c51e31fe45572d66cfa8a987d85b32f303873c35d0551db29c09d424eb10e76374f908ef62bc7c60236231bbddf40eb60f1be9652322da4b1f5e')
+b2sums=('5aabd8a559c79b8c4ee0711ce679dc8a6a091a7606261da7533b16b65295c0c12c0c77ac8f921a36a608e91584f90722c439127feeecde2480e6304428e7e6c0')
+
+prepare() {
+ cd $pkgname-$pkgver
+ autoreconf -fiv
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
+
+ install -vDm 644 $pkgname-$pkgver/{NEWS,README}.md -t
"$pkgdir/usr/share/doc/$pkgname/"
+ install -vDm 644 $pkgname-$pkgver/LICENSE -t
"$pkgdir/usr/share/licenses/$pkgname/"
+}
+