Package Details: dvorak7min 1.6.1-5

Git Clone URL: https://aur.archlinux.org/dvorak7min.git (read-only, click to copy)
Package Base: dvorak7min
Description: dvorak7min is a simple ncurses-based typing tutor for those trying to become fluent with the Dvorak keyboard layout
Upstream URL: http://packages.debian.org/unstable/games/dvorak7min
Licenses: GPL
Submitter: paul2lv
Maintainer: esrh
Last Packager: esrh
Votes: 11
Popularity: 0.000000
First Submitted: 2006-03-10 22:06 (UTC)
Last Updated: 2022-03-07 19:11 (UTC)

Latest Comments

esrh commented on 2022-03-07 19:13 (UTC)

Issues should be fixed. I added a new patch that fixes a str_errlist bug that makes it fail to compile. The upstream hasn't been updated in forever.

x-yuri commented on 2020-06-28 19:53 (UTC) (edited on 2020-06-28 19:55 (UTC) by x-yuri)

It doesn't work the way it is now. Files are to be installed to $pkgdir/usr/bin, not to pkg/usr/bin. And $startdir doesn't seem to be documented:

build() {
  cd $pkgname-$pkgver
  make INSTALL="$pkgdir/usr/bin"
}

package() {
  cd $pkgname-$pkgver
  make INSTALL="$pkgdir/usr/bin" install
}

ale1ster commented on 2016-06-10 17:03 (UTC)

I have had occasion to reinstall this package twice, and since there is no package() function the build fails. So, the build() and package() functions should rather be as follows (forgive any mistakes, since I am not all that familiar with packaging guidelines): build() { cd $pkgname-$pkgver make } package() { cd $srcdir/$pkgname-$pkgver _installdir=$pkgdir/usr/bin make INSTALL=$_installdir install }