Commit d07c91e4 authored by Seblu's avatar Seblu
Browse files

Remove flvmeta

parent 96e998f9
Loading
Loading
Loading
Loading

flvmeta/PKGBUILD

deleted100644 → 0
+0 −25
Original line number Diff line number Diff line
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Fedor Suchkov <f.suchkov@gmail.com>
# Contributor: Nathan O <ndowens.aur at gmail dot com>
pkgname=flvmeta
pkgver=1.1.0
pkgrel=1
pkgdesc='An application that aims to be a replacement for tools such as flvtool2'
arch=('i686' 'x86_64')
url="http://code.google.com/p/${pkgname}/"
license=('GPL2')
source=("http://flvmeta.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
md5sums=('ef98d55ff13f7a347be9c37ef5222e84')

build() {
  cd ${pkgname}-${pkgver}
  ./configure --prefix=/usr
  make
}

package() {
  cd ${pkgname}-${pkgver}
  make DESTDIR="${pkgdir}" install
}

# vim:set ts=2 sw=2 ft=sh et: