# Copyright 2002 moto kawasaki # Distributed under the terms of the GNU General Public License, v2 or later # Author moto kawasaki # P: package name and version, automatically be set. # A: name w/o path of the main archive file A="apel-200205140540.tar.gz" # S: source directory S=${WORKDIR}/`echo ${P} | sed -e 's#\.##g'` # DESCRIPTION: short, one line description DESCRIPTION="A Portable Emacs Library -- apel" # SRC_URI: URI of source code archive SRC_URI="http://ftp.m17n.org/pub/apel/${A}" # HOMEPAGE: URI of the original HOMEPAGE="http://www.m17n.org/apel/" # DEPEND: build dependency DEPEND="emacs" # RDEPEND: runtime dependency RDEPEND="" src_compile() { cd ${S}; make || die } src_install() { make PREFIX=${D}/usr install || die }