diff --git a/discount/.footprint b/discount/.footprint new file mode 100644 index 0000000..d1bd4b7 --- /dev/null +++ b/discount/.footprint @@ -0,0 +1,11 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/markdown +drwxr-xr-x root/root usr/include/ +-r--r--r-- root/root usr/include/mkdio.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libmarkdown.so -> libmarkdown.so.3.0.0 +lrwxrwxrwx root/root usr/lib/libmarkdown.so.3 -> libmarkdown.so.3.0.0 +-rwxr-xr-x root/root usr/lib/libmarkdown.so.3.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-r--r--r-- root/root usr/lib/pkgconfig/libmarkdown.pc diff --git a/discount/.signature b/discount/.signature new file mode 100644 index 0000000..2481a05 --- /dev/null +++ b/discount/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/kde-plasma-6.pub +RWTGxEYrvi0p3iZTYg8jWE0clKoti/kktVEf3Y0PIxe6xOPQQ2Os9wx1MgpIIS7TtOxvqaC7b6nw0GROfqT6vdv/mz8pJi8AKgU= +SHA256 (Pkgfile) = d992a7780c16c5bab7deb5f29d16c6778cbb9e3857e17897daa63a9456bab82c +SHA256 (.footprint) = 6f75d7e4cd0177bc448a50158315e0e934c6a9211cbef1f6d6bc29f283d27a99 +SHA256 (discount-3.0.0d.tar.gz) = 0ed8cc27ac5d46dc6a8beedd5e5673ac8b466a6474bdb7d35f37c815f670385f diff --git a/discount/Pkgfile b/discount/Pkgfile new file mode 100644 index 0000000..5f5effa --- /dev/null +++ b/discount/Pkgfile @@ -0,0 +1,23 @@ +# Description: C implementation of John Gruber's Markdown markup language +# URL: https://github.com/Orc/discount +# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu +# Depends on: + +name=discount +version=3.0.0d +release=1 +source=(https://github.com/Orc/discount/archive/v$version/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure.sh \ + --prefix=/usr \ + --enable-all-features \ + --with-fenced-code \ + --shared + make + make DESTDIR=$PKG install +} + +# vim: set ts=4 et: