mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 13:22:21 +01:00
also update the tarball checksum. probably cgit just returning the same data encoded slightly differently with new timestamp / gzip compression level.
34 lines
992 B
Plaintext
34 lines
992 B
Plaintext
# Contributor:
|
|
# Maintainer:
|
|
pkgname=sandy
|
|
pkgver=0.4
|
|
pkgrel=1
|
|
pkgdesc="sandy is an ncurses text editor with an easy-to-read, hackable C source."
|
|
url="http://tools.suckless.org/sandy"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="ncurses"
|
|
depends_dev=""
|
|
makedepends="$depends_dev ncurses-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://git.suckless.org/sandy/snapshot/sandy-0.4.tar.gz"
|
|
|
|
builddir=${srcdir}/${pkgname}-${pkgver}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" PREFIX=/usr install || return 1
|
|
install -d "$pkgdir"/usr/share/licenses/"$pkgname"
|
|
install -m644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
|
|
}
|
|
|
|
md5sums="c1bdce5873eacf4fed89b32925b1db97 sandy-0.4.tar.gz"
|
|
sha256sums="3eb6a53cce1e0a729292903f2b5d7f8ea5b3dc85e109df66088b19e7378ca4d1 sandy-0.4.tar.gz"
|
|
sha512sums="6e706cfd381f25a5ba1dcaa2ce80754b13a2dd95a6374a060a4a0bd5ac63478d60a6bb26d8e2105143a4c9d400442c0a164fa6d295babdf6480d695f188b2b90 sandy-0.4.tar.gz"
|