blob: 2478d480ac00dc1c7f1226e32d091bae35b5454f (
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: Andi Shyti <andi.shyti@samsung.com>
_pkgname=lthor
pkgname=$_pkgname-git
pkgver=2.0
pkgrel=1
pkgdesc="Tizen target flasher"
arch=('i686' 'x86_64')
url="https://www.tizen.org/"
license=('APL')
depends=('cmake')
makedpends=('git')
group=('tizen-tools')
source=('git://git.tizen.org/tools/lthor')
sha256sums=('SKIP')
build() {
cd $_pkgname
mkdir build
cd build
cmake ../
make
}
package() {
cd $_pkgname/build
make DESTDIR=$pkgdir install
}
|