gsimplecal: initial commit, version 2.1

This commit is contained in:
Tim Biermann 2020-06-07 14:18:42 +00:00
parent 0a0bd0fd3c
commit c5c2c1b414
3 changed files with 29 additions and 0 deletions

7
gsimplecal/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/gsimplecal
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/gsimplecal.1.gz

5
gsimplecal/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33x72nwudOEXI7lxzW1EU9IDuZVofBfV/3goinuk7IHO0WQitShmw4rZ6qrfK+RZSCkD9CqyAB/n6gOivj0M4wU=
SHA256 (Pkgfile) = 7ff3fafab2d74c677646741e2d27ad53baa3f0351b6af4b04e57add10ffec698
SHA256 (.footprint) = ada16d8ef5fb19a07600dee14782f5675e3f4f10f150435c6deecce8f168145d
SHA256 (gsimplecal-2.1.tar.gz) = 660cac7333d3507203a008e142e2b8f5dfcf0735b6ccabdd8d3d902b5d2c40e9

17
gsimplecal/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: a lightweight calendar applet written in C++ using GTK
# URL: https://github.com/dmedvinsky/gsimplecal
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gdk-pixbuf gtk3 harfbuzz libffi libpng xorg-libxcomposite xorg-libxcursor xorg-libxinerama
name=gsimplecal
version=2.1
release=1
source=(https://github.com/dmedvinsky/gsimplecal/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}