Initial upload: ntfs2btrfs 20220812-1
This commit is contained in:
commit
61e8a1b226
2 changed files with 44 additions and 0 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal file
|
@ -0,0 +1,17 @@
|
|||
pkgbase = ntfs2btrfs
|
||||
pkgdesc = In-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs
|
||||
pkgver = 20220812
|
||||
pkgrel = 1
|
||||
url = https://github.com/maharmstone/ntfs2btrfs
|
||||
arch = x86_64
|
||||
license = GPL2
|
||||
makedepends = cmake
|
||||
makedepends = pkgconf
|
||||
depends = fmt
|
||||
depends = zlib
|
||||
depends = lzo
|
||||
depends = zstd
|
||||
source = https://github.com/maharmstone/ntfs2btrfs/archive/20220812/ntfs2btrfs-20220812.tar.gz
|
||||
sha256sums = 9ce07535e6191ab45f204a4dd281be4768d7917df4426ee7c71aa9c308a2fe93
|
||||
|
||||
pkgname = ntfs2btrfs
|
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||
|
||||
pkgname=ntfs2btrfs
|
||||
pkgver=20220812
|
||||
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/ntfs2btrfs'
|
||||
license=('GPL2')
|
||||
depends=('fmt' 'zlib' 'lzo' 'zstd')
|
||||
makedepends=('cmake' 'pkgconf')
|
||||
source=("https://github.com/maharmstone/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz")
|
||||
sha256sums=('9ce07535e6191ab45f204a4dd281be4768d7917df4426ee7c71aa9c308a2fe93')
|
||||
|
||||
build() {
|
||||
cmake -B build -S "$pkgname-$pkgver" \
|
||||
-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…
Reference in a new issue