blob: 14b1a9d8af8be5243b88521f394019f8bebf27d0 (
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
|
# Maintainer: Joe User <joe.user@example.com>
pkgname=asciimap
pkgver=$(date +%y%m%d)
pkgrel=1
pkgdesc="Create ASCII art from Bitmap Images"
arch=('i686' 'x86_64')
url="https://github.com/kompetenzbolzen/AsciiMap"
license=('MIT')
groups=()
depends=('glibc')
makedepends=('clang')
optdepends=()
source=("git+https://github.com/kompetenzbolzen/AsciiMap")
md5sums=('SKIP')
build() {
cd $srcdir/AsciiMap
make
}
package() {
cd $srcdir/AsciiMap
mkdir -p $pkgdir/usr/bin
make PREFIX="$pkgdir/usr/" install
}
|