blob: 082877d335fa5033bd63e117072667706e714f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'libepoxy'
version = '1.2'
stype = SourceType.TARBALL
url = 'https://github.com/anholt/libepoxy/archive/v%(version)s.tar.gz'
licenses = [License.MIT]
config_sh = 'sh autogen.sh'
use_system_libs = True
patches = ['libepoxy/0001-Fix-aclocal-problems.patch']
deps = []
files_libs = ['libepoxy']
files_devel = ['include/epoxy', 'lib/pkgconfig/epoxy.pc']
|