diff --git a/codec/alac.pc.in b/codec/alac.pc.in new file mode 100644 index 0000000..628e47c --- /dev/null +++ b/codec/alac.pc.in @@ -0,0 +1,24 @@ +# Copyright (c) 2013 Tiancheng "Timothy" Gu +# Modifications copyright (c) 2016 Mike Brady +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: Apple Lossless Audio Codec +Description: ALAC library +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -lalac +Cflags: -I${includedir} diff --git a/configure.ac b/configure.ac index 7cf0a79..04fd44b 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ dnl See the License for the specific language governing permissions and dnl limitations under the License. AC_PREREQ([2.68]) -AC_INIT([alac], [0.0.6], [mikebrady@eircom.net]) +AC_INIT([alac], [0.0.7], [mikebrady@eircom.net]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([codec/dp_enc.c]) AC_CONFIG_HEADERS([config.h])