Date: Monday, January 7, 2019 @ 06:56:11
Author: alad
Revision: 420926
archrelease: copy trunk to community-x86_64
Added:
xsettingsd/repos/community-x86_64/
xsettingsd/repos/community-x86_64/PKGBUILD
(from rev 420925, xsettingsd/trunk/PKGBUILD)
----------+
PKGBUILD | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
Copied: xsettingsd/repos/community-x86_64/PKGBUILD (from rev 420925,
xsettingsd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2019-01-07 06:56:11 UTC (rev 420926)
@@ -0,0 +1,24 @@
+# Maintainer: Alad Wenter <[email protected]>
+pkgname=xsettingsd
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Provides settings to X11 applications via the XSETTINGS specification"
+arch=('x86_64')
+url="https://github.com/derat/xsettingsd"
+license=('custom:BSD')
+depends=('libx11' 'gcc-libs')
+makedepends=('git' 'scons')
+source=("git+https://github.com/derat/xsettingsd.git")
+md5sums=('SKIP')
+
+build() {
+ cd "$pkgname"
+ env CPPFLAGS="$CXXFLAGS" scons xsettingsd dump_xsettings
+}
+
+package() {
+ cd "$pkgname"
+ install -Dm755 xsettingsd dump_xsettings -t "$pkgdir/usr/bin/"
+ install -Dm644 xsettingsd.1 dump_xsettings.1 -t
"$pkgdir/usr/share/man/man1/"
+ install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname/"
+}