added markdown tools

This commit is contained in:
Ella-0 2021-04-05 18:41:17 +01:00
parent 5e2dcbb4e5
commit 91ed203f60
5 changed files with 121 additions and 0 deletions

24
pkgs/smu/build.sh Normal file
View file

@ -0,0 +1,24 @@
pkgname=smu
pkgver=master
fetch() {
curl -L "https://github.com/Gottox/smu/archive/refs/heads/master.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
cp ../config.mk .
}
build() {
cd $pkgname-$pkgver
cp ../config.mk .
}
package() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}