blob: 5b4fe5e5a41f2e4541ca5e083996522aaed809a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
NAME="berry"
DESC="A healthy, byte-sized window manager"
MAKEDEPS="make "
DEPS="libx11 libxft libxinerama "
PKG_VER=0.1.11
SOURCE="https://github.com/JLErvin/berry/archive/refs/tags/$PKG_VER.tar.gz"
build () {
make prefix=/usr
}
package () {
make prefix=/usr DESTDIR=$PKG_DEST install
install -Dm644 examples/sxhkdrc $PKG_DEST/usr/share/doc/berry/examples/
install -Dm644 examples/autostart $PKG_DEST/usr/share/doc/berry/examples/
}
|