forked from ports/contrib
22 lines
485 B
Plaintext
22 lines
485 B
Plaintext
# Description: A sophisticated CLI calendar and alarm program
|
|
# URL: https://dianne.skoll.ca/projects/remind/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
name=remind
|
|
version=04.03.01
|
|
release=1
|
|
source=(https://dianne.skoll.ca/projects/$name/download/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
# remove tkremind
|
|
rm $PKG/usr/{bin/tkremind,share/man/man1/tkremind.1}
|
|
rm -r $PKG/usr/{applications,icons}
|
|
}
|