Compare commits
8 commits
0df4b7ff3a
...
17b3fe7b1f
Author | SHA1 | Date | |
---|---|---|---|
17b3fe7b1f | |||
d97a8b2abd | |||
|
e787c7fc8b | ||
|
ba5449332d | ||
|
a69158fd00 | ||
|
a0cbd68b11 | ||
|
52456070b7 | ||
|
c729c1a8e1 |
2 changed files with 55 additions and 0 deletions
20
ntfs2btrfs-git/.SRCINFO
Normal file
20
ntfs2btrfs-git/.SRCINFO
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
pkgbase = ntfs2btrfs-git
|
||||||
|
pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs
|
||||||
|
pkgver = 20220812.r10.gb8ae0f8
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/maharmstone/ntfs2btrfs
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL2
|
||||||
|
makedepends = git
|
||||||
|
makedepends = cmake
|
||||||
|
makedepends = pkgconf
|
||||||
|
depends = fmt
|
||||||
|
depends = zlib
|
||||||
|
depends = lzo
|
||||||
|
depends = zstd
|
||||||
|
provides = ntfs2btrfs
|
||||||
|
conflicts = ntfs2btrfs
|
||||||
|
source = git+https://github.com/maharmstone/ntfs2btrfs.git
|
||||||
|
sha256sums = SKIP
|
||||||
|
|
||||||
|
pkgname = ntfs2btrfs-git
|
35
ntfs2btrfs-git/PKGBUILD
Normal file
35
ntfs2btrfs-git/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||||
|
# Contributor: N Fytilis <n-fit AT live.com>
|
||||||
|
|
||||||
|
pkgname=ntfs2btrfs-git
|
||||||
|
pkgver=20220812.r10.gb8ae0f8
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://github.com/maharmstone/${pkgname%-git}"
|
||||||
|
license=('GPL2')
|
||||||
|
depends=('fmt' 'zlib' 'lzo' 'zstd')
|
||||||
|
makedepends=('git' 'cmake' 'pkgconf')
|
||||||
|
provides=("${pkgname%-git}")
|
||||||
|
conflicts=("${pkgname%-git}")
|
||||||
|
source=("git+${url}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "${pkgname%-git}"
|
||||||
|
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/release-//g;s/-/./g'
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cmake -B build -S "${pkgname%-git}" \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DCMAKE_INSTALL_SBINDIR=bin \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DBUILD_TESTING=OFF
|
||||||
|
|
||||||
|
cmake --build build
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
DESTDIR="$pkgdir" cmake --install build
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue