Package Details: levee 4.0-1

Git Clone URL: https://aur.archlinux.org/levee.git (read-only, click to copy)
Package Base: levee
Description: A small, modal text editor based on vi
Upstream URL: http://www.pell.portland.or.us/~orc/Code/levee/
Licenses: MIT
Conflicts: lv
Submitter: tdy
Maintainer: keenerd
Last Packager: keenerd
Votes: 3
Popularity: 0.000000
First Submitted: 2008-12-08 14:21 (UTC)
Last Updated: 2020-08-07 22:54 (UTC)

Latest Comments

haawda commented on 2020-08-07 07:36 (UTC) (edited on 2020-08-07 07:37 (UTC) by haawda)

pkgname=levee
pkgver=4.0
pkgrel=1
pkgdesc="A small, modal text editor based on vi"
arch=('i686' 'x86_64')
url="http://www.pell.portland.or.us/~orc/Code/levee/"
license=('MIT')
depends=('ncurses')
conflicts=('lv') # see the build() function
source=(http://www.pell.portland.or.us/~orc/Code/$pkgname/$pkgname-$pkgver.tar.bz2
        COPYING)
sha256sums=('fc39d3ad51573a3878acf050b45b9ba0c02f81dbf2b0149730724cf131b39c95'
            '17735dca7a89c94074239ec22955dd59df89abc6dec501269c325fc87c1932b7')

build() {
  cd $pkgname-$pkgver

  # An 'lv' link is created for convenience, conflicting with the 'lv' package.
  # Uncomment the next line to skip the symlink if you also want the 'lv' package.
  sed -i '/LN_S/d' Makefile.in

  ./configure.sh --prefix=/usr
  make
}

package() {
  cd $pkgname-$pkgver
  make PREFIX="$pkgdir" install
  install -Dm644 ../COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}