diff options
author | Aaron Ball <nullspoon@oper.io> | 2021-09-29 19:35:52 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2021-09-29 19:37:58 -0600 |
commit | bd24ae869a6b32de265027285db74eb90ddd9f9a (patch) | |
tree | bf2ca8360fbf2ccf83faa8629e1f5a2a57864788 /bemenu | |
parent | 0c1283dc617dbcd2e5549d73adc6674c5b3a0f4a (diff) | |
download | ports-bd24ae869a6b32de265027285db74eb90ddd9f9a.tar.gz ports-bd24ae869a6b32de265027285db74eb90ddd9f9a.tar.xz |
bemenu: Initial commit of version 0.6.3
Diffstat (limited to 'bemenu')
-rw-r--r-- | bemenu/.footprint | 20 | ||||
-rw-r--r-- | bemenu/.md5sum | 1 | ||||
-rw-r--r-- | bemenu/.signature | 5 | ||||
-rw-r--r-- | bemenu/Pkgfile | 15 |
4 files changed, 41 insertions, 0 deletions
diff --git a/bemenu/.footprint b/bemenu/.footprint new file mode 100644 index 0000000..47b7616 --- /dev/null +++ b/bemenu/.footprint @@ -0,0 +1,20 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/bemenu +-rwxr-xr-x root/root usr/bin/bemenu-run +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/bemenu.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/bemenu/ +-rwxr-xr-x root/root usr/lib/bemenu/bemenu-renderer-curses.so +-rwxr-xr-x root/root usr/lib/bemenu/bemenu-renderer-wayland.so +-rwxr-xr-x root/root usr/lib/bemenu/bemenu-renderer-x11.so +lrwxrwxrwx root/root usr/lib/libbemenu.so -> libbemenu.so.0.6.3 +lrwxrwxrwx root/root usr/lib/libbemenu.so.0 -> libbemenu.so.0.6.3 +-rwxr-xr-x root/root usr/lib/libbemenu.so.0.6.3 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/bemenu.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/bemenu.1.gz diff --git a/bemenu/.md5sum b/bemenu/.md5sum new file mode 100644 index 0000000..5826dfe --- /dev/null +++ b/bemenu/.md5sum @@ -0,0 +1 @@ +4be51ece82b9b468791fee2fbb15fda2 bemenu-0.6.3.tar.gz diff --git a/bemenu/.signature b/bemenu/.signature new file mode 100644 index 0000000..b94b122 --- /dev/null +++ b/bemenu/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/nullspoon.pub +RWThnm0RuVZhZn0BrHMckBm1XM9CW0lMTVV7HZRN56oTb1j0B0Ec+w+UY3VusE1iaAG5eZ2Ojf3UIGjcpH2M5fOV2Qc1oIQhdAc= +SHA256 (Pkgfile) = 61e70dc537d6e80db7aaf0f389e6501670b7185a2378499b0ef0da846f60616c +SHA256 (.footprint) = 85824045c68b4e734819c734d936c07f5031be1c67ab17e8973694066aa6906a +SHA256 (bemenu-0.6.3.tar.gz) = 9576dc474320f3c30e9f56f55c884d66578be0d5a71c1e9f4551f06c65702a06 diff --git a/bemenu/Pkgfile b/bemenu/Pkgfile new file mode 100644 index 0000000..2d41f22 --- /dev/null +++ b/bemenu/Pkgfile @@ -0,0 +1,15 @@ +# Description: Dynamic menu library and client inspired by dmenu +# URL: https://github.com/Cloudef/bemenu +# Maintainer: Aaron Ball, nullspoon at oper dot io +# Depends on: wayland wayland-protocols libxkbcommon pango cairo + +name=bemenu +version=0.6.3 +release=1 +source=(https://github.com/Cloudef/bemenu/releases/download/${version}/${name}-${version}.tar.gz) + +build() { + cd ${name}-${version} + make PREFIX=/usr + make DESTDIR="${PKG}" PREFIX=/usr install +} |