File: configure.in

package info (click to toggle)
gimp-data-extras 1%3A2.0.2-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 8,472 kB
  • sloc: sh: 517; makefile: 158
file content (27 lines) | stat: -rw-r--r-- 606 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.54)

m4_define([gimp_data_extras_version], [2.0.2])

AC_INIT([GIMP Extra Data Files], [gimp_data_extras_version],
        [http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP],
        [gimp-data-extras])

AC_CONFIG_SRCDIR([brushes/flower.gbr])

AM_INIT_AUTOMAKE(no-define dist-bzip2)
AM_MAINTAINER_MODE

PKG_CHECK_MODULES(gimp, gimp-2.0)
GIMP_DATA_DIR=`$PKG_CONFIG gimp-2.0 --variable=gimpdatadir`

AC_SUBST(GIMP_DATA_DIR)

dnl Output the Makefiles
AC_CONFIG_FILES([
Makefile
brushes/Makefile
patterns/Makefile
])

AC_OUTPUT