oops
This commit is contained in:
parent
52456070b7
commit
a0cbd68b11
2 changed files with 6 additions and 10 deletions
2
.SRCINFO
2
.SRCINFO
|
@ -10,5 +10,5 @@ pkgbase = ntfs2btrfs
|
||||||
source = git+https://github.com/maharmstone/ntfs2btrfs
|
source = git+https://github.com/maharmstone/ntfs2btrfs
|
||||||
md5sums = SKIP
|
md5sums = SKIP
|
||||||
|
|
||||||
pkgname = ntfs2btrfs
|
pkgname = ntfs2btrfs-git
|
||||||
|
|
||||||
|
|
14
PKGBUILD
14
PKGBUILD
|
@ -1,10 +1,6 @@
|
||||||
# This is an example PKGBUILD file. Use this as a start to creating your own,
|
# Maintainer: N Fytilis <n-fit AT live.com>
|
||||||
# and remove these comments. For more information, see 'man PKGBUILD'.
|
pkgbase=ntfs2btrfs
|
||||||
# NOTE: Please fill out the license field for your package! If it is unknown,
|
pkgname=$pkgbase-git
|
||||||
# then please put 'unknown'.
|
|
||||||
|
|
||||||
# Maintainer: Your Name <youremail@domain.com>
|
|
||||||
pkgname=ntfs2btrfs
|
|
||||||
pkgver=1
|
pkgver=1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
epoch=
|
epoch=
|
||||||
|
@ -18,7 +14,7 @@ source=("git+https://github.com/maharmstone/ntfs2btrfs")
|
||||||
md5sums=(SKIP)
|
md5sums=(SKIP)
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$pkgname"
|
cd "$pkgbase"
|
||||||
mkdir b || true
|
mkdir b || true
|
||||||
cd b
|
cd b
|
||||||
cmake -DCMAKE_INSTALL_PREFIX='/usr' ..
|
cmake -DCMAKE_INSTALL_PREFIX='/usr' ..
|
||||||
|
@ -26,6 +22,6 @@ build() {
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$pkgname/b"
|
cd "$pkgbase/b"
|
||||||
make DESTDIR="$pkgdir/" install
|
make DESTDIR="$pkgdir/" install
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue