contrib/remind/Pkgfile

22 lines
485 B
Plaintext
Raw Normal View History

# Description: A sophisticated CLI calendar and alarm program
2021-03-18 18:34:37 +01:00
# URL: https://dianne.skoll.ca/projects/remind/
# Maintainer: Juergen Daubert, jue at crux dot nu
name=remind
2024-03-01 09:24:56 +01:00
version=04.03.01
release=1
source=(https://dianne.skoll.ca/projects/$name/download/$name-$version.tar.gz)
build() {
2021-03-18 18:34:37 +01:00
cd $name-$version
2024-03-01 09:24:56 +01:00
2021-03-18 18:34:37 +01:00
./configure --prefix=/usr
2024-03-01 09:24:56 +01:00
2021-03-18 18:34:37 +01:00
make
make DESTDIR=$PKG install
2024-03-01 09:24:56 +01:00
# remove tkremind
rm $PKG/usr/{bin/tkremind,share/man/man1/tkremind.1}
rm -r $PKG/usr/{applications,icons}
}