[arch-commits] Commit in (libptytty libptytty/trunk libptytty/trunk/PKGBUILD)

Antonio Rojas arojas at gemini.archlinux.org
Mon Jul 18 20:16:30 UTC 2022


    Date: Monday, July 18, 2022 @ 20:16:30
  Author: arojas
Revision: 1254457

New rxvt-unicode dependency

Added:
  libptytty/
  libptytty/trunk/
  libptytty/trunk/PKGBUILD

----------+
 PKGBUILD |   25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

Added: libptytty/trunk/PKGBUILD
===================================================================
--- libptytty/trunk/PKGBUILD	                        (rev 0)
+++ libptytty/trunk/PKGBUILD	2022-07-18 20:16:30 UTC (rev 1254457)
@@ -0,0 +1,25 @@
+# Maintainer:
+# Contributor: mrdotx <klassiker at gmx.de>
+
+pkgname=libptytty
+pkgver=2.0
+pkgrel=4
+pkgdesc='An offspring of rxvt-unicode that handles pty/tty/utmp/wtmp/lastlog handling in mostly OS-independent ways'
+arch=(x86_64)
+url='http://software.schmorp.de/pkg/libptytty.html'
+license=(GPL)
+source=(http://dist.schmorp.de/$pkgname/$pkgname-$pkgver.tar.gz)
+depends=(gcc-libs)
+makedepends=(cmake)
+sha256sums=('8033ed3aadf28759660d4f11f2d7b030acf2a6890cb0f7926fb0cfa6739d31f7')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DBUILD_SHARED_LIBS=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



More information about the arch-commits mailing list