diff options
author | Philipp Uhl | 2019-03-25 12:56:28 +0100 |
---|---|---|
committer | Philipp Uhl | 2019-03-25 12:56:28 +0100 |
commit | e406c1c3869aad71321e1d9fbec30294d7ef0c3d (patch) | |
tree | a2ed75bd52402f91b522a5fc89e92ebab27e7887 | |
download | aur-e406c1c3869aad71321e1d9fbec30294d7ef0c3d.tar.gz |
Adds initial files
-rw-r--r-- | .SRCINFO | 19 | ||||
-rw-r--r-- | PKGBUILD | 26 |
2 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..1c312f75525 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +pkgbase = deadd-notification-center-bin + pkgdesc = Customizable notification-daemon with notification center + pkgver = 1.6.1 + pkgrel = 1 + url = https://github.com/phuhl/linux_notification_center + arch = x86_64 + license = BSD + makedepends = stack + makedepends = cairo + makedepends = pango + makedepends = gobject-introspection + depends = gobject-introspection-runtime + depends = gtk3 + conflicts = deadd-notification-center + source = deadd-notification-center-bin-1.6.1.tar.gz::https://github.com/phuhl/linux_notification_center/archive/1.6.1.tar.gz + md5sums = 6b367f8187d0f71633fc22d47b6dd2cf + +pkgname = deadd-notification-center-bin + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..7e67758d963 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Philipp Uhl <philipp.uhl@rwth-aachen.de> + +pkgname=deadd-notification-center-bin +pkgver=1.6.1 +pkgrel=1 +pkgdesc="Customizable notification-daemon with notification center" +url="https://github.com/phuhl/linux_notification_center" +license=("BSD") +arch=('x86_64') +depends=('gobject-introspection-runtime' 'gtk3') +conflicts=('deadd-notification-center') +makedepends=('stack' 'cairo' 'pango' 'gobject-introspection') +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/phuhl/linux_notification_center/archive/${pkgver}.tar.gz") +prepare() { + tar -zxvf "${pkgname}-${pkgver}.tar.gz" +} +build() { + cd "linux_notification_center-${pkgver}" +} + +package() { + cd "linux_notification_center-${pkgver}" + make DESTDIR="$pkgdir" install +} + +md5sums=('6b367f8187d0f71633fc22d47b6dd2cf') |