Package Details: tgt 1.0.84-1

Git Clone URL: https://aur.archlinux.org/tgt.git (read-only, click to copy)
Package Base: tgt
Description: iSCSI Target STGT for Arch Linux
Upstream URL: http://stgt.sourceforge.net/
Keywords: iSCSI SAN Target
Licenses: GPL
Submitter: None
Maintainer: thotypous
Last Packager: thotypous
Votes: 11
Popularity: 0.000182
First Submitted: 2010-01-14 12:08 (UTC)
Last Updated: 2022-12-20 14:28 (UTC)

Latest Comments

1 2 3 Next › Last »

amiga23 commented on 2022-08-02 09:13 (UTC)

Version 1.0.83 is available: https://github.com/fujita/tgt/tags Just change pkgver pkgver=1.0.83

nano_red commented on 2021-05-14 13:00 (UTC) (edited on 2021-05-14 13:09 (UTC) by nano_red)

Updated PKGBUILD:

 #Maintainer: Ovi Chis ovi@ovios.org
 pkgname=tgt
 pkgver=1.0.80
 pkgrel=1
 pkgdesc="iSCSI Target STGT for Arch Linux"
 arch=('x86_64' 'i686' 'arm')
 url="http://stgt.sourceforge.net/"
 license=('GPL')
 depends=('perl-config-general' 'libxslt' 'docbook-xsl')
 optdepends=('sg3_utils')
 backup=('etc/tgt/targets.conf')
 source=(https://github.com/fujita/tgt/archive/v$pkgver.tar.gz)

 build() {
  cd "$srcdir/$pkgname-$pkgver"
  make sbindir=/usr/bin ISCSI=1 PREFIX="$pkgdir"
 }

 package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir" sbindir=/usr/bin install
  install -Dm644 "$srcdir/$pkgname-$pkgver/scripts/tgtd.service" "$pkgdir/usr/lib/systemd/system/tgtd.service"
 }
 md5sums=(SKIP)

alexhmt commented on 2020-10-18 03:15 (UTC)

Updated PKGBUILD:


#Maintainer: Ovi Chis ovi@ovios.org
pkgname=tgt
pkgver=1.0.79
pkgrel=1
pkgdesc="iSCSI Target STGT for Arch Linux"
arch=('x86_64' 'i686' 'arm')
url="http://stgt.sourceforge.net/"
license=('GPL')
depends=('perl-config-general' 'libxslt')
optdepends=('sg3_utils')
backup=('etc/tgt/targets.conf')
source=(https://github.com/fujita/tgt/archive/v$pkgver.tar.gz)

build() {
  cd "$srcdir/$pkgname-$pkgver"
  make sbindir=/usr/bin ISCSI=1 PREFIX="$pkgdir"
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir" sbindir=/usr/bin install
  install -Dm644 "$srcdir/$pkgname-$pkgver/scripts/tgtd.service" "$pkgdir/usr/lib/systemd/system/tgtd.service"
}
md5sums=(SKIP)

<deleted-account> commented on 2017-11-26 22:34 (UTC)

https://gist.github.com/ajs124/7b62c3257f5cc2ec66d71353d8711dbd

ermarch commented on 2017-03-03 11:29 (UTC)

Updated PKGBUILD: #Maintainer: Ovi Chis ovi@ovios.org pkgname=tgt pkgver=1.0.69 pkgrel=1 pkgdesc="iSCSI Target STGT for Arch Linux" arch=('x86_64' 'i686' 'arm') url="http://stgt.sourceforge.net/" license=('GPL') depends=('perl-config-general' 'libxslt') optdepends=('sg3_utils') backup=('etc/tgt/targets.conf') source=(https://github.com/fujita/tgt/archive/v$pkgver.tar.gz) build() { cd "$srcdir/$pkgname-$pkgver" make sbindir=/usr/bin ISCSI=1 PREFIX="$pkgdir" || return 1 } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" sbindir=/usr/bin install install -Dm644 "$srcdir/$pkgname-$pkgver/scripts/tgtd.service" "$pkgdir/usr/lib/systemd/system/tgtd.service" } # vim:set ts=2 sw=2 et: md5sums=('244e84bdf2aeee7eb006fac925b3dde8')

ksovi commented on 2015-09-02 17:16 (UTC)

I've fixed the build so the package will install now without --force pacman, yaourt and packer passed my tests.

ksovi commented on 2015-08-17 16:10 (UTC)

I will work to fix this. Meanwhile it can be built with makepkg and installed with --force

rocklobster commented on 2015-02-12 21:30 (UTC)

This package no longer works as-is due to the Pacman 4.2 directory symlink changes. The build needs to be updated to put files into /usr/bin instead of /usr/sbin.