1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-13 03:09:51 +03:00

testing/femto: new aport

https://github.com/jorge-leon/femto
Tiny Emacs clone with tiny Lisp extension language
This commit is contained in:
Georg Lehner 2024-10-29 18:46:40 +01:00 committed by Celeste
parent f99256b833
commit 9ea85f8027

30
testing/femto/APKBUILD Normal file
View file

@ -0,0 +1,30 @@
maintainer="Georg Lehner <jorge@magma-soft.at>"
pkgname=femto
pkgver=2.21.7
pkgrel=0
pkgdesc="Tiny Emacs clone with tiny Lisp extension language"
url="https://github.com/jorge-leon/femto"
arch="all"
license="CC0-1.0"
makedepends="ncurses-dev"
case "$CARCH" in
x86_64|aarch64) makedepends="$makedepends pandoc-cli" ;;
esac
subpackages="$pkgname-doc"
source="https://github.com/jorge-leon/femto/archive/v$pkgver/femto-$pkgver.tar.gz"
options="!check"
build() {
case "$CARCH" in
x86_64|aarch64) make doc PREFIX=/usr ;;
esac
make PREFIX=/usr
}
package() {
make install PREFIX=/usr DESTDIR="$pkgdir"
}
sha512sums="
090f02d2e898119b6efad9c8f5e86aff4d375247fd1939565db3dacff555f668f7d09f8d62d8e98f26209e4cff3958c58b190fdd087c27dc9bb2d532cb64771c femto-2.21.7.tar.gz
"