summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 42d89dc5863f95b79c62e85baf413533086ac911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: Reberti Carvalho Soares <6reberti6@gmail.com>
pkgname=kyfm-git
provides=('kyfm')
pkgdesc="The fastest file manager."
pkgrel=1
pkgver=1.3.3de6f92d46
options=()
license=('GPLv2')
arch=('i686' 'x86_64')
depends=('ncurses' 'readline')
makedepends=('ncurses' 'readline')
groups=('file-management' 'suckless')
source=('git://github.com/KisuYami/kyfm')
url='www.github.com/KisuYami/kyfm'
md5sums=('SKIP')

build() {
  cd kyfm
  make
}

package() {
  cd kyfm

  mkdir -p "$pkgdir"/usr/bin/
  make DESTDIR="$pkgdir"/usr/bin/ install
}

# vim:set ts=2 sw=2 et: