blob: 9b1079b9f080a134e3dd2fce26264899f53ec392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Shi Yanling <sylphenix@outlook.com>
pkgname=sff
pkgver=0.9
pkgrel=1
pkgdesc="Simple and fast terminal file manager"
arch=('x86_64')
license=('BSD')
url="https://codeberg.org/sylphenix/sff"
depends=('ncurses' 'file' 'glibc')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('SKIP')
build() {
cd ${pkgname}
make PREFIX=/usr
}
package() {
cd ${pkgname}
make install DESTDIR="${pkgdir}" PREFIX=/usr
}
|