discount: initial commit, version 3.0.0d

This commit is contained in:
Tim Biermann 2024-03-24 16:12:06 +01:00
parent d44d4c39e1
commit 096ef65cba
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 39 additions and 0 deletions

11
discount/.footprint Normal file
View File

@ -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

5
discount/.signature Normal file
View File

@ -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

23
discount/Pkgfile Normal file
View File

@ -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: