summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 996432a33419b3a8db6c0a570dbeabe236e2a885 (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
# Maintainer: bugra9 <bugra9@gmail.com>

pkgname=bootableusb
pkgver=0.4
pkgrel=2
pkgdesc="Create bootable usb drives"
arch=('i686' 'x86_64')
url="https://github.com/bugra9/BootableUSB"
license=('GPL3')
groups=()
depends=()
makedepends=()
optdepends=()
source=("bootableusb::git+https://github.com/bugra9/BootableUSB.git")
md5sums=('SKIP')

build() {
        cd bootableusb
        make
}

package() {
        cd bootableusb
        make DESTDIR="$pkgdir" install
}