blob: c1b277841f332236ac76ef7714903b944d522ced (
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: Eugene 'Vindex' Stulin <tech.vindex@gmail.com>
PROJECT=fileformat
DESCR="A tool for recognizing file formats"
makedepends=("bash" "chrpath" "findutils" "glib2" "amalthea-ldc2" "ldc")
depends=("glib2" "amalthea-ldc2")
pkgver=0.4.3
pkgrel=0
license=("BSL-1.0 or GPL-3+")
DC=ldc2
DC_PKG=ldc
pkgname=${PROJECT}
pkgdesc="${DESCR}"
arch=("x86_64")
url="https://gitlab.com/os-18/${PROJECT}"
TARBALL=$pkgname-$pkgver.tar.gz
source=("$TARBALL::$url/-/archive/v$pkgver/${PROJECT}-v$pkgver.tar.gz")
sha256sums=("7ebf9da336b30a050fa73664d876082804b54ffd3a2a3f1a999bac44a19b72c1")
build() {
cd "${PROJECT}-v$pkgver"
make DC=${DC} || return 1
}
package() {
cd "${PROJECT}-v$pkgver"
make DESTDIR=$pkgdir PREFIX=usr install DC=${DC} || return 1
}
|