Commit bc3bc003 authored by Seblu's avatar Seblu
Browse files

git-svn-id: https://seblu.net/s/archpkg@130 02741741-5192-46b8-8916-7152b19231d9
parent 70566e31
Loading
Loading
Loading
Loading

flvmeta/PKGBUILD

0 → 100644
+25 −0
Original line number Diff line number Diff line
# Maintainer: Seblu <seblu+arch@seblu.net>
# Contributor: Fedor Suchkov <f.suchkov@gmail.com>
# Contributor: Nathan O <ndowens.aur at gmail dot com>
pkgname=flvmeta
pkgver=1.0.11
pkgrel=4
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=('70c111fe20636501c2ddcd99f6cec5d7')

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: