mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
22 lines
504 B
Plaintext
22 lines
504 B
Plaintext
# description : Terminal swallower
|
|
# homepage : https://github.com/salman-abedin/devour
|
|
# depends : libx11
|
|
|
|
|
|
name=devour
|
|
version=12
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/salman-abedin/devour/archive/refs/tags/$version.tar.gz"
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
sed -i 's|VERSION = 11.0|VERSION = 12|' Makefile
|
|
sed -i 's|BIN_DIR = /usr/local/bin|BIN_DIR = /usr|' Makefile
|
|
|
|
make
|
|
install -m 755 -d $PKG/usr/bin
|
|
install -Dm 755 devour $PKG/usr/bin/
|
|
}
|